diff options
| author | real-zephex <[email protected]> | 2024-03-17 09:26:48 +0530 |
|---|---|---|
| committer | real-zephex <[email protected]> | 2024-03-17 09:26:48 +0530 |
| commit | 7673c5a887324a5ea2d3b1dc068cb675b8b28aec (patch) | |
| tree | 66ec6b18bdf0b880a3cd5498f2d86a70e9de6423 /src/app/info/[id] | |
| parent | The anime section is fully server rendered! (diff) | |
| download | dramalama-7673c5a887324a5ea2d3b1dc068cb675b8b28aec.tar.xz dramalama-7673c5a887324a5ea2d3b1dc068cb675b8b28aec.zip | |
vercel fix ;)
Diffstat (limited to 'src/app/info/[id]')
| -rw-r--r-- | src/app/info/[id]/page.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app/info/[id]/page.js b/src/app/info/[id]/page.js index 3d1f0f6..5048612 100644 --- a/src/app/info/[id]/page.js +++ b/src/app/info/[id]/page.js @@ -28,7 +28,7 @@ export default async function AnimeInfo({ params }) { <div className="buttonContainer"> {info && info.episodes.map((item, index) => ( - <Link href={`/video/${item.id}`}> + <Link href={`/video/${item.id}`} key={index}> <button className="dramaButton"> {item.number} </button> |